home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 2 / Amiga Tools 2.iso / dfue / elcheapofax / printers / rcs / defs.h,v < prev    next >
Text File  |  1995-03-09  |  931b  |  76 lines

  1. head    1.2;
  2. access;
  3. symbols
  4.     OCT93:1.2;
  5. locks;
  6. comment    @ * @;
  7.  
  8.  
  9. 1.2
  10. date    93.06.11.16.29.21;    author Rhialto;    state Exp;
  11. branches;
  12. next    1.1;
  13.  
  14. 1.1
  15. date    93.06.11.15.08.07;    author Rhialto;    state Exp;
  16. branches;
  17. next    ;
  18.  
  19.  
  20. desc
  21. @All include files together
  22. @
  23.  
  24.  
  25. 1.2
  26. log
  27. @First real RCS checkin
  28. @
  29. text
  30. @/* $Id$
  31.  * $Log$
  32.  */
  33.  
  34. /*
  35.  *  DEFS.H
  36.  */
  37.  
  38. #include <exec/types.h>
  39. #include <exec/nodes.h>
  40. #include <exec/lists.h>
  41. #include <exec/memory.h>
  42. #include <devices/printer.h>
  43. #include <devices/prtbase.h>
  44. #include <devices/prtgfx.h>
  45.  
  46. #include <clib/exec_protos.h>
  47.  
  48. #define Prototype extern
  49.  
  50. typedef struct PrtInfo    PrtInfo;
  51. typedef struct PrinterData PrinterData;
  52. typedef struct PrinterExtendedData PrinterExtendedData;
  53.  
  54. extern const PrinterExtendedData PEDData;
  55.  
  56. typedef void *FILE;
  57.  
  58. #include "/faxfile.h"
  59. #include "protos.h"
  60.  
  61. #ifdef DEBUG
  62. # include "syslog.h"
  63. #else
  64. # define debug(x)   /* empty */
  65. #endif
  66. @
  67.  
  68.  
  69. 1.1
  70. log
  71. @Initial revision
  72. @
  73. text
  74. @d1 3
  75. @
  76.